home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 1999 January / PC Plus Super CD No55a (PCP-147A-1-99) (Disc 1) (1998).iso / full / cbuilder / DATA.Z / CURSORS.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1997-02-13  |  585 b   |  17 lines

  1. //---------------------------------------------------------------------------
  2. #include <vcl.h>
  3. #pragma hdrstop
  4. //---------------------------------------------------------------------------
  5. USEFORM("main.cpp", Form1);
  6. USERES("cursors.res");
  7. //---------------------------------------------------------------------
  8. WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
  9. {
  10.     Application->Initialize();
  11.     Application->CreateForm(__classid(TForm1), &Form1);
  12.     Application->Run();
  13.  
  14.     return 0;
  15. }
  16. //---------------------------------------------------------------------------
  17.